regexp.machine.pool (field)
15 uses
regexp (current package)
exec.go#L42: pool []*thread // pool of available threads
exec.go#L96: for _, t := range m.pool {
exec.go#L106: if n := len(m.pool); n > 0 {
exec.go#L107: t = m.pool[n-1]
exec.go#L108: m.pool = m.pool[:n-1]
exec.go#L249: m.pool = append(m.pool, d.t)
exec.go#L269: m.pool = append(m.pool, t)
exec.go#L287: m.pool = append(m.pool, d.t)
exec.go#L307: m.pool = append(m.pool, t)
regexp.go#L247: for _, t := range m.pool {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |